diff options
Diffstat (limited to 'app/[lng]/evcp/(evcp)/vendor-investigation/page.tsx')
| -rw-r--r-- | app/[lng]/evcp/(evcp)/vendor-investigation/page.tsx | 11 |
1 files changed, 7 insertions, 4 deletions
diff --git a/app/[lng]/evcp/(evcp)/vendor-investigation/page.tsx b/app/[lng]/evcp/(evcp)/vendor-investigation/page.tsx index c59de869..df3567b4 100644 --- a/app/[lng]/evcp/(evcp)/vendor-investigation/page.tsx +++ b/app/[lng]/evcp/(evcp)/vendor-investigation/page.tsx @@ -9,7 +9,7 @@ import { Shell } from "@/components/shell" import { VendorsInvestigationTable } from "@/lib/vendor-investigation/table/investigation-table" import { getVendorsInvestigation } from "@/lib/vendor-investigation/service" import { searchParamsInvestigationCache } from "@/lib/vendor-investigation/validations" - +import { InformationButton } from "@/components/information/information-button" interface IndexPageProps { searchParams: Promise<SearchParams> } @@ -33,9 +33,12 @@ export default async function IndexPage(props: IndexPageProps) { <div className="flex items-center justify-between space-y-2"> <div className="flex items-center justify-between space-y-2"> <div> - <h2 className="text-2xl font-bold tracking-tight"> - Vendor Investigation Management - </h2> + <div className="flex items-center gap-2"> + <h2 className="text-2xl font-bold tracking-tight"> + Vendor Investigation Management + </h2> + <InformationButton pageCode="evcp/vendor-investigation" /> + </div> <p className="text-muted-foreground"> 요청된 Vendor 실사에 대한 스케줄 정보를 관리하고 결과를 입력할 수 있습니다. |
